:root {
    --primary: #615e16;
    /* accentkleur */
    --background: rgb(25, 40, 80);

    --radius: 8px;
    font-size: 1.5rem;
}

.header {
    width: 100%;
    max-width: 1000px;
    height: 90px;
    /* maximale breedte */
    display: flex;
    align-items: center;
    margin: 0 auto;
    /* centreert de header horizontaal */
    padding: 0 20px;


    text-align: center;
    box-sizing: border-box;
  
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

    position: relative;
}

.logo-img {
    height: 120px;
    width: auto;
    display: block;
    margin-left: 0;
    margin-top: 7px;
    margin-bottom: 7px;
    border-radius: 15px;
    transform-origin: top left;
    transition: transform 0.3s ease;

}

.logo-img:hover {
    transform: scale(2.0);
}

.header,
.navbar .container {
    display: flex;
    align-items: center;   /* verticaal exact in het midden */
}


.header {
    overflow: visible;   /* voorkomt afkappen */
}



/* ===============================
   ALGEMENE STIJLEN
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: var(--background);
    color: var(--text);
    line-height: 1.6;

}


/* ===============================
   BODY & FLEX VOOR FOOTER
================================= */
html,
body {
    height: 100%;
    margin: 0;
    background: var(--background);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* minstens schermhoogte */
}

main {
    flex: 1;
    /* main vult alle beschikbare ruimte tussen header en footer */
    overflow: visible;
}

/* ===============================
   HOME
================================= */
.home-tekst-section p,
.home-tekst2-section {

    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.65),
        0 5px 15px rgba(0, 0, 0, 0.45);
    padding: 2rem 2rem;
    background: rgba(248, 231, 192, 0.85);




}
.highlight-h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(170, 140, 60);
    margin-bottom: 1rem;
}


/* ===============================
   SECTIONS
================================= */
.section {
    margin: 2rem 0;
}


/* Hover effect voor extra diepte */
.section:hover {
    transform: none;
    /* geen wippen */
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.85),
        0 12px 30px rgba(0, 0, 0, 0.65);
    /* vaste diepe schaduw blijft */
}



.section h2 {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;

}

h3 {
    color: rgb(170, 140, 60);


}

h1 {
    color: #3A2A1A;
}

h2 {
    color: rgb(170, 140, 60);


}

.container {
    max-width: 1300px;
    margin: auto;
}


/* ===============================
   UNIFORME SECTION (ALLES GELIJK)
================================= */
.section-uniform {
    position: relative;
    padding: 5rem 2rem;

    /* Basis achtergrond + bruine tint voor de hele sectie */
    background-image:
        linear-gradient(rgba(122, 90, 48, 0.35),
            rgba(122, 90, 48, 0.35)),
        url("images/Logo Frank achtergrond meisje zwart.png");
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    color: #3A2A1A;
    border-radius: 12px;

   box-shadow:
    0 -10px 30px rgba(0, 0, 0, 0.4),  /* schaduw boven */
    0 10px 30px rgba(0, 0, 0, 0.6),   /* schaduw onder */
    0 25px 50px rgba(0, 0, 0, 0.85),  /* bestaande diepe schaduw */
    0 12px 30px rgba(0, 0, 0, 0.65);  /* bestaande lichte schaduw */


    /* NOOIT wippen */
    overflow: visible;
    transform: none;
    transition: none;
    font-size: 1.4rem;
}



/* Content blijft boven overlay en achtergrond */
.section-uniform>* {
    position: relative;
    z-index: 1;
}


/* ===============================
   BUTTONS
================================= */
.btn {
    display: inline-block;
    background: rgba(165, 145, 105, 0.884);
    /* lichte overlay net als sectie */
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    /* zelfde afgeronde hoeken als secties */
    border: 1px solid rgb(218, 195, 153);
    text-decoration: none;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.5);
    /* 3D-schaduw */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Hover effect voor zweven */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

.vinkje {
    color: #D4AF37;
    /* maakt het vinkje goud */
    margin-right: 0.5rem;
    /* ruimte tussen vinkje en tekst */
}


/* ===============================
   FOOTER
================================= */
footer {
    text-align: center;
    padding: 2.5rem;
    margin-top: 2rem;
    color: #D4AF37;
    font-size: 1.4rem;
    background-color: rgb(25, 40, 80);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* Container met tekst en social icons inline */
.footer-text-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* ruimte tussen tekst en icons */
    flex-wrap: wrap; /* mobielvriendelijk: tekst en icons onder elkaar op smalle schermen */
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons img {
    width: 36px;
    height: 36px;
    transition: transform 0.25s ease;
}

.social-icons a:hover img {
    transform: scale(1.3);
}

/* Partner sectie */
.partner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: #D4AF37;
    flex-wrap: wrap;
}

.partner img {
    height: 100px;
    transition: transform 0.25s ease;
    border-radius: 12px;
    transform-origin: bottom right;
}

.partner a:hover img {
    transform: scale(1.5);
}

/* Mobiel */
@media (max-width: 500px) {
    .footer-text-icons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .partner span {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }
}
